home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PRINTER / LQ441.ARJ / GO.BAT < prev    next >
DOS Batch File  |  1992-04-28  |  3KB  |  124 lines

  1. echo off
  2.  
  3. type go.doc 
  4. getyn Enter 'Y' (or 'y') if using hard drive.
  5. if errorlevel 1 goto hard
  6. echo ....
  7. getyn Enter 'Y' (or 'y') if using 5 inch; 'N' for 3 inch floppies.
  8. if errorlevel 1 goto flopF
  9. if not errorlevel 1 goto flopTH
  10.  
  11. :flopF
  12. set w=5¼
  13. set n=3
  14. goto a
  15. :flopTH
  16. set w=3½
  17. set n=2
  18. :a
  19. if %1.==. goto b
  20. set u=%1
  21. goto start
  22. :b
  23. set u=B:
  24. echo.
  25. echo Your will need %n%, %w% inch, formatted floppy disks for the installation.
  26. echo The destination drive will be %u%. If you want something else start again by
  27. echo entering GO followed by the drive you want (D:, for example). Be sure you
  28. echo have such a such a drive (D:) and that you follow the DOS syntax correctly.
  29. echo.
  30. getyn Enter Y if want to use %u%, otherwise N to start again. 
  31. if errorlevel 1 goto start 
  32.  
  33. goto scram 
  34.  
  35. :hard
  36. set w=hard
  37. if %1.==. goto none  
  38. set u=%1
  39. goto start
  40.  
  41. :none
  42. set u=C:\LQMATRIX
  43. echo.
  44. echo The default drive and directory will be %u%. If you want
  45. echo something else start again by entering GO followed by the drive
  46. echo and the directory you want, say D:\LQMTX. Be sure you have such 
  47. echo a drive (D:) and that you follow the DOS syntax correctly.
  48. echo If the directory already exists, ignore the DOS warning.
  49. echo.
  50.  
  51. getyn Enter Y if want to use %u%, otherwise N to start again.
  52. if not errorlevel 1 goto scram
  53.  
  54. :start
  55. if "%w%"=="hard" md %u%
  56. if "%w%"=="hard" goto skip
  57. echo .....
  58. rem disk 1. program and Wisan fonts 
  59. echo Put a formatted %w% inch floppy in the %u% drive
  60. pause
  61. :skip
  62. echo on
  63. copy packing.lst %u%
  64. echo off
  65. echo unpacking the main programs
  66. lqmtx441 /e%u% 
  67. lqdwn /e%u%
  68. echo unpacking the Wisan fonts 
  69. lqrnw /e%u% 
  70. if not "%w%"=="5¼" goto skip2
  71. echo. 
  72. rem disk 2  general and Hensel fonts 
  73. echo Put a second %w% inch formatted floppy in the %u% drive
  74. pause
  75. echo.
  76. lqdwn /e%u%
  77. :skip2  
  78. echo unpacking various useful fonts
  79. lqfont /e%u%
  80.  
  81. if not "%w%"=="3½" goto skip3
  82. echo. 
  83. echo Put a second %w% inch formatted floppy in the %u% drive
  84. pause
  85. echo.
  86. lqdwn /e%u%
  87. :skip3
  88.  
  89. echo unpacking the Hensel fonts 
  90. lqreh /e%u% 
  91.  
  92. if not "%w%"=="5¼" goto skip4
  93. echo. 
  94. echo Put a third %w% inch formatted floppy in the %u% drive
  95. pause
  96. echo.
  97. lqdwn /e%u%
  98. :skip4
  99. echo unpacking the Chamberlain fonts
  100. lqcrc /e%u%
  101. echo unpacking the Documentation files
  102. lqdoc /e%u% 
  103. echo unpacking the Landscape printer
  104. lands /e%u%
  105. cls
  106. echo ___________ 
  107. echo. 
  108. echo  All done! 
  109. echo. 
  110. echo. 
  111. echo  To get a quick lesson on how to download a font insert the 
  112. echo  documentation disk (#3), or go to the chosen directory on the hard 
  113. echo  drive, and enter at the prompt: 
  114. echo. 
  115. echo.   type QUICKIE.DOC     -- for a screen display or 
  116. echo.   copy QUICKIE.DOC prn -- for a print out. [Be sure printer is on]. 
  117. echo. 
  118. echo. 
  119. echo  [Jimmy Paris Software ] 
  120. echo. 
  121. :scram 
  122. 
  123.  
  124.